home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Mac Game Programming Gurus
/
TricksOfTheMacGameProgrammingGurus.iso
/
Book Chapters
/
03 - Advanced Graphics
/
Example 7
/
main.h
< prev
next >
Wrap
Text File
|
1995-02-18
|
413b
|
26 lines
//
// File: main.h
//
// This file is the header for main.c.
//
// 2/18/95 -- Created by Mick
//
// shield
#ifndef _main_h_
#define _main_h_
// include files
// global defines
// extern functions
// extern data
extern WindowPtr gMainWindow; // the window that we are drawing to
extern CTabHandle gAppColorTable; // the color table that we are drawing with
// end of shield
#endif // #ifndef _main_h_